[index]

Row Tabular Chunk

Syntax

row <integer1> [to <integer2>] {of | in}
<pickList | dataSheet | dataSheet | chart> the <ordinal> row {of | in} <pickList | dataSheet | dataSheet | chart>

Description

The row chunk yields all of the values in a particular row or range of rows in a multi line object. In the returned value, each row is delimited by returns; each column is delimited by tabs.

Examples

You can use a field and a pickList in conjunction to simulate a combo box. Create a field named Fruits and place the following handler into its script: on openField show lst "theList" end openField Create a pickList named "theList". Type the following in the Message Box, and press Enter: put "Apples" & return & "Oranges" & return & "Pears" into lst "theList" Now place the following handler into the pickList's script: on mouseUp rowNum put row rowNum of me into fld "Fruits" hide me end mouseUp
This text has been mechanically extracted from the Oracle Media Objects 1.0.4.9 MediaTalk Reference, © 1995 Oracle Corporation, and is provided here solely for educational/historical purposes.